home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 1998 June / SGI IRIX 6.5 Applications 1998 June.iso / dist / license_eoe.idb / usr / bin / licensemgr.setup.z / licensemgr.setup
Text File  |  1998-05-04  |  2KB  |  77 lines

  1. #!/sbin/sh
  2. #
  3. # Update netscape config files for LicenseManager
  4. #
  5. # This script installs both the old mime type, enterlicense, and the 
  6. # new mime type licensemgr to support 5.3 users who may be expecting 
  7. # the enterlicense type, and >5.3 users who are expecting 
  8. # the licensemgr type.
  9. #
  10. # If the host already contains the updates, this script does nothing.
  11. #
  12.  
  13. MAILCAP=/usr/local/lib/netscape/mailcap
  14. MIMETYPE=/usr/local/lib/netscape/mime.types
  15.  
  16.  
  17.  
  18. #
  19. # If the netscape files do not exists, warn the user and write the information
  20. # to the files.
  21. #
  22.  
  23. if test ! -f $MAILCAP
  24. then
  25.     echo
  26.     echo "The Netscape Web Browser is not installed.  Please add the following"
  27.     echo "information to the mailcap file for your Web browser."
  28.     echo '    application/x-enterlicense; /usr/etc/enterlicense %s; \'
  29.     echo '    application/x-licensemgr; /usr/etc/LicenseManager %s; \'
  30.     echo '  description="Software License Installation"'
  31.     echo
  32. else
  33.     if grep "application/x-enterlicense"  $MAILCAP >/dev/null
  34.     then
  35.     true
  36.     else
  37.     echo 'application/x-enterlicense; /usr/etc/enterlicense %s; \' >> $MAILCAP
  38.     echo '    description="Software License Installation"' >> $MAILCAP
  39.     fi
  40.  
  41.     if grep "application/x-licensemgr"  $MAILCAP >/dev/null
  42.     then
  43.     true
  44.     else
  45.     echo 'application/x-licensemgr; /usr/etc/LicenseManager %s; \' >> $MAILCAP
  46.     echo '    description="Software License Installation"' >> $MAILCAP
  47.     fi
  48.  
  49. fi
  50.  
  51. if test ! -f $MIMETYPE
  52. then
  53.     echo
  54.     echo "The Netscape Web Browser is not installed.  Please add the following"
  55.     echo "information to the mime.types file for your Web browser."
  56.     echo '    type=application/x-enterlicense exts=lic'
  57.     echo '    type=application/x-licensemgr exts=licmgr'
  58.     echo
  59. else
  60.     if grep "application/x-enterlicense"  $MIMETYPE >/dev/null
  61.     then
  62.     true
  63.     else
  64.     echo 'type=application/x-enterlicense exts=lic' >> $MIMETYPE
  65.     fi
  66.  
  67.     if grep "application/x-licensemgr"  $MIMETYPE >/dev/null
  68.     then
  69.     true
  70.     else
  71.     echo 'type=application/x-licensemgr exts=licmgr' >> $MIMETYPE
  72.     fi
  73.  
  74. fi
  75.  
  76. exit 0
  77.